home *** CD-ROM | disk | FTP | other *** search
/ Reverse Code Engineering RCE CD +sandman 2000 / ReverseCodeEngineeringRceCdsandman2000.iso / RCE / Library / +ORC / Orc pac 5 / FILEZ.ZIP / FS21.ZIP / FS.LST < prev    next >
Encoding:
File List  |  1997-03-07  |  2.8 KB  |  85 lines

  1.             fs.lst                        Sourcer    v6.51    7-Mar-97   4:23 am   Page 1
  2.  
  3.  
  4.                 PAGE  59,132
  5.  
  6.                 ;██████████████████████████████████████████████████████████████████████████
  7.                 ;██                                                     ██
  8.                 ;██                FS                                     ██
  9.                 ;██                                                     ██
  10.                 ;██      Created:   4-Apr-84                                         ██
  11.                 ;██      Passes:    5          Analysis    Options on: QRS                  ██
  12.                 ;██                                                     ██
  13.                 ;██████████████████████████████████████████████████████████████████████████
  14.  
  15.                 target        EQU   'T1'                      ; Target assembler: TASM-1.0
  16.  
  17.                 include  srmacros.inc
  18.  
  19.  
  20.                 ; The following equates show data references outside the range of the program.
  21.  
  22.      = 0078            data_1e        equ    78h            ; (0000:0078=522h)
  23.      = 007A            data_2e        equ    7Ah            ; (0000:007A=0)
  24.      = 1000            data_3e        equ    1000h            ;*(1000:1000=5Eh)
  25.  
  26.                 seg_a        segment    byte public
  27.                         assume    cs:seg_a, ds:seg_a
  28.  
  29.  
  30.                         org    100h
  31.  
  32.                 fs        proc    far
  33.  
  34. 44EB:0100            start:
  35. 44EB:0100  FA                    cli                ; Disable interrupts
  36. 44EB:0101  33 C0                xor    ax,ax            ; Zero register
  37. 44EB:0103  8E D0                mov    ss,ax
  38. 44EB:0105  BC C0B0                mov    sp,0C0B0h
  39. 44EB:0108  FB                    sti                ; Enable interrupts
  40. 44EB:0109  8E C0                mov    es,ax
  41. 44EB:010B  26: C7 06 0078 012E            mov    word ptr es:data_1e,12Eh    ; (0000:0078=522h)
  42. 44EB:0112  26: 8C 0E 007A            mov    es:data_2e,cs        ; (0000:007A=0)
  43. 44EB:0117 ·BB 1000                mov    bx,data_3e        ; (1000:1000=5Eh)
  44. 44EB:011A  8E C3                mov    es,bx
  45. 44EB:011C  33 DB                xor    bx,bx            ; Zero register
  46. 44EB:011E  B8 0201                mov    ax,201h
  47. 44EB:0121  BA 0000                mov    dx,0
  48. 44EB:0124  B9 0165                mov    cx,165h
  49. 44EB:0127  CD 13                int    13h            ; Disk  dl=drive a  ah=func 02h
  50.                                         ;  read sectors to memory es:bx
  51.                                         ;   al=#,ch=cyl,cl=sectr,dh=head
  52. 44EB:0129  EA 1000:0000        ;*        jmp    far ptr loc_1        ;*(1000:0000)
  53. 44EB:0129  EA                    db    0EAh
  54. 44EB:012A  0000 1000                dw    0, 1000h
  55. 44EB:012E  CF 02 25 03 05 2A            db    0CFh, 02h, 25h, 03h, 05h, 2Ah
  56. 44EB:0134  FF 50 83 13 04            db    0FFh, 50h, 83h, 13h, 04h
  57.  
  58.                 fs        endp
  59.  
  60.            fs.lst                Sourcer    v6.51    7-Mar-97   4:23 am   Page 2
  61.  
  62.                 seg_a        ends
  63.  
  64.  
  65.  
  66.                         end    start
  67.            fs.lst                Sourcer    v6.51    7-Mar-97   4:23 am   Page 3
  68.  
  69.  
  70.                 ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ CROSS REFERENCE - KEY ENTRY POINTS ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
  71.  
  72.                     seg:off    type       label
  73.                    ---- ----   ----   --------------------------------
  74.                    44EB:0100   far    start
  75.  
  76.                  ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ Interrupt Usage Synopsis ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
  77.  
  78.                         Interrupt 13h : Disk  dl=drive #  ah=func xxh
  79.                         Interrupt 13h :  ah=02h     read sectors to memory es:bx
  80.  
  81.                  ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒ I/O Port Usage Synopsis  ▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒
  82.  
  83.                         No I/O ports used.
  84.  
  85.